home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr48 / pavt150.zip / JAMUTILW.ZIP / JAMUTILW.RC < prev    next >
Text File  |  1993-07-01  |  3KB  |  117 lines

  1. /*
  2. **  JAM(mbp) - The Joaquim-Andrew-Mats Message Base Proposal
  3. **
  4. **  JAM Windows Utility
  5. **
  6. **  Written by Mats Wallin
  7. **
  8. **  ----------------------------------------------------------------------
  9. **
  10. **  jamutilw.rc (JAMmb)
  11. **
  12. **  Resource file for the JAM(mb) Windows Utility
  13. **
  14. **  NOTE! The VersionInfo resource is not supported by the
  15. **        Zortech Resource Compiler. To use it, this resource have
  16. **        to be removed.
  17. **
  18. **  Copyright 1993 Joaquim Homrighausen, Andrew Milner, Mats Birch, and
  19. **  Mats Wallin. ALL RIGHTS RESERVED.
  20. **
  21. **  93-06-28    MW
  22. **  Initial coding
  23. */
  24.  
  25. #include <ver.h>
  26. #include <windows.h>
  27.  
  28. #include "dlgutilw.h"
  29.  
  30. /*
  31. ** Icon
  32. */
  33.  
  34. IDI_JAMUTILW ICON "jamutilw.ico"
  35.  
  36.  
  37. /*
  38. ** String table
  39. */
  40.  
  41. stringtable     LoadOnCall Moveable Discardable
  42. begin
  43.         IDS_FILTERS,                    "JAM files|*.JHR||"
  44. end
  45.  
  46.  
  47. /*
  48. ** Version resource
  49. */
  50.  
  51. #define VER_FILEVERSION                 1,0,0,0
  52. #define VER_FILEVERSION_STR             "1.00"
  53. #define VER_PRODUCTVERSION              1,0,0,0
  54. #define VER_PRODUCTVERSION_STR          "1.00"
  55.  
  56. #define VER_FILEDESCRIPTION_STR         "JAM(mb) Windows Utility"
  57. #define VER_INTERNALNAME_STR            "JAMUTILW"
  58. #define VER_ORIGINALFILENAME_STR        "JAMUTILW.EXE"
  59. #define VER_PRODUCTNAME_STR             "JAM(mb) Windows Utility"
  60.  
  61. #define VER_COMMENTS_STR                "\0"
  62. #define VER_COMPANYNAME_STR             "Joaquim Homrighausen, Andrew Milner, Mats Birch, and Mats Wallin"
  63. #define VER_LEGALCOPYRIGHT_YEARS        "1993"
  64. #define VER_LEGALCOPYRIGHT_STR          "Copyright \251 ", VER_LEGALCOPYRIGHT_YEARS, " ", VER_COMPANYNAME_STR
  65.  
  66. #define VER_FILETYPE                    VFT_DLL
  67. #define VER_FILESUBTYPE                 0
  68.  
  69. #define VER_FILEFLAGSMASK               VS_FFI_FILEFLAGSMASK
  70. #define VER_FILEOS                      VOS_DOS_WINDOWS16
  71. #define VER_FILEFLAGS                   0
  72.  
  73.  
  74. VS_VERSION_INFO         VersionInfo
  75.  
  76.   FileVersion           VER_FILEVERSION
  77.   ProductVersion        VER_PRODUCTVERSION
  78.   FileFlagsMask         VER_FILEFLAGSMASK
  79.   FileFlags             VER_FILEFLAGS
  80.   FileOS                VER_FILEOS
  81.   FileType              VER_FILETYPE
  82.   FileSubType           VER_FILESUBTYPE
  83.  
  84.   Begin
  85.     Block "StringFileInfo"
  86.     Begin
  87.       Block "040904E4"
  88.       Begin
  89.         Value "Comments",         VER_COMMENTS_STR,           "\0"
  90.         Value "CompanyName",      VER_COMPANYNAME_STR,        "\0"
  91.         Value "FileDescription",  VER_FILEDESCRIPTION_STR,    "\0"
  92.         Value "FileVersion",      VER_FILEVERSION_STR,        "\0"
  93.         Value "InternalName",     VER_INTERNALNAME_STR,       "\0"
  94.         Value "LegalCopyright",   VER_LEGALCOPYRIGHT_STR,     "\0"
  95.         Value "OriginalFilename", VER_ORIGINALFILENAME_STR,   "\0"
  96.         Value "ProductName",      VER_PRODUCTNAME_STR,        "\0"
  97.         Value "ProductVersion",   VER_PRODUCTVERSION_STR,     "\0"
  98.       End
  99.     End
  100.  
  101.     Block "VarFileInfo"
  102.     Begin
  103.       Value "Translation", 
  104.             0x0409, 0x04E4
  105.     End
  106.   End
  107.  
  108.  
  109. /*
  110. ** Dialog boxes
  111. */
  112.  
  113. #include "jamutilw.dlg"
  114.  
  115.  
  116. /* End of file "jamutilw.rc" */
  117.